home *** CD-ROM | disk | FTP | other *** search
/ Maplin Electronics Catalogue 2001 Winter / Maplins Catalogue Winter 2001.iso / CDCopy.bat < prev    next >
DOS Batch File  |  2001-12-20  |  2KB  |  100 lines

  1. @echo Off
  2. ECHO ****** CD to Hard Drive Copy Routine ******
  3.  
  4. ECHO To what drive should the CD to be copied to
  5.  
  6. Choice /C:cdefgh /n C, D, E, F, G, H 
  7. if errorlevel 6 goto HDrive
  8. if errorlevel 5 goto GDrive
  9. if errorlevel 4 goto FDrive
  10. if errorlevel 3 goto EDrive
  11. if errorlevel 2 goto DDrive
  12. if errorlevel 1 goto CDrive
  13.  
  14. exit
  15.  
  16. :CDrive
  17. Set T1="C:"
  18. Goto FromCopy
  19. :DDrive
  20. Set T1="D:"
  21. Goto FromCopy
  22. :EDrive
  23. Set T1="E:"
  24. Goto FromCopy
  25. :fDrive
  26. Set T1="F:"
  27. Goto FromCopy
  28. :gDrive
  29. Set T1="G:"
  30. Goto FromCopy
  31. :hDrive
  32. Set T1="H:"
  33. Goto FromCopy
  34. :FromCopy
  35. ECHO What drive is the CD in 
  36. Choice /C:cdefgh /n C, D, E, F, G, H 
  37. if errorlevel 6 goto FHDrive
  38. if errorlevel 5 goto fGDrive
  39. if errorlevel 4 goto FFDrive
  40. if errorlevel 3 goto FEDrive
  41. if errorlevel 2 goto FDDrive
  42. if errorlevel 1 goto FCDrive
  43.  
  44. exit
  45.  
  46. :FCDrive
  47. Set F1="C:"
  48. Goto StartCopy
  49. :FDDrive
  50. Set F1=D:
  51. Goto StartCopy
  52. :FEDrive
  53. Set F1="E:"
  54. Goto StartCopy
  55. :FfDrive
  56. Set F1="F:"
  57. Goto StartCopy
  58. :FgDrive
  59. Set F1="G:"
  60. Goto StartCopy
  61. :FhDrive
  62. Set F1="H:"
  63. Goto StartCopy
  64.  
  65. :StartCopy
  66.  
  67. %F1%
  68. cd\
  69.  
  70. xcopy *.ico /C %T1%\maplin\
  71. xcopy CDROM.htm /C %T1%\maplin\
  72. xcopy TopNav.htm /C %T1%\maplin\
  73.  
  74. xcopy temp\Home.htm /C %T1%\maplin\
  75. xcopy temp\LeftNav.htm /C %T1%\maplin\
  76. xcopy temp\BlackBar.htm /C %T1%\maplin\
  77.  
  78.  
  79. xcopy CodeFind\*.* /S /C %T1%\maplin\CodeFind\
  80. xcopy JScript\*.* /S /C %T1%\maplin\JScript\
  81. xcopy Pictures\ /S /C %T1%\maplin\Pictures\
  82. xcopy Thumbs\ /S /C %T1%\maplin\Thumbs\
  83. xcopy ProdFind\*.* /S /C %T1%\maplin\ProdFind\
  84. xcopy SemiFind\*.* /S /C %T1%\maplin\SemiFind\
  85. xcopy Stores\*.* /S /C %T1%\maplin\Stores\
  86. xcopy Products\*.* /S /C %T1%\maplin\Products\
  87. xcopy CodeFind\*.* /S /C %T1%\maplin\CodeFind\
  88. xcopy WordFind\*.* /S /C %T1%\maplin\WordFind\
  89. xcopy Images\*.* /S /C %T1%\maplin\Images\
  90. xcopy Help\*.* /S /C %T1%\maplin\Help\
  91. xcopy temp\000Pdf.htm /C %T1%\maplin\Help\pdf\
  92.  
  93. cls
  94. Exit
  95.  
  96.  
  97.  
  98.  
  99.  
  100.